home comics writing pictures archive about

FormatHelper.h

Language: C++
Last Modified: 2022-08-18 12:03:01 AM UTC
File Size: 325 bytes
http://www.penguinstew.ca/example/CodeFormater/FormatHelper.h
#pragma once
#include "Type.h"
#include <string>
namespace FormatHelper
{
std::string GetWord(std::string line, int pos, std::regex regEx);
bool IsMatch(std::string line, std::string str, int lineStartPos, std::regex nextCharRegEx);
int EscapeCount(std::string line, std::string escapse, int lineStartPos);
}
1
2
3
4
5
6
7
8
9
10
11